
/* Style the header */
.header {
  background-color: #e6e6e6;
  padding: 1px;
  text-align: center;
}

/* Style the headertext */
h1 {
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px #047ac8;
}

h2 {
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px #047ac8;
}


body{
  margin: 2;
  background-color: #e6e6e6;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #62befc;
    background: linear-gradient(top, #aeddfc 0%, #62befc 100%);  
	background: -moz-linear-gradient(top, #aeddfc 0%, #62befc 100%); 
	background: -webkit-linear-gradient(top, #aeddfc 0%,#62befc 100%); 
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  font: 16px arial, sans-serif;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #4a4a4a;
}

li.dropdown {
  display: inline-block;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #828282;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;

}

.dropdown-content a:hover {background-color: #515151}

.dropdown:hover .dropdown-content {
  display: block;
}

  div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 3px solid #777;
}

div.gallery img {
  max-width: 100%;
  height: auto;
}

div.desc {
  padding: 8px;

  text-align: center;
}

* {
  box-sizing: border-box;
}


.responsive {
  padding: 0 4px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
 }

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  background-color: #e6e6e6;
  padding: 5px;
  text-align: center;
}

